home *** CD-ROM | disk | FTP | other *** search
/ Basic Press Kit / Basic Press Kit.iso / pc / basic.exe / basic.dxr / 00001_startMovie.ls next >
Encoding:
Text File  |  2002-11-04  |  365 b   |  15 lines

  1. on startMovie
  2.   if QuickTimeVersion() < 5 then
  3.     alert("Quicktime needs to be installed for this CD. You will be guided to the installation process.")
  4.     if the platform contains "Mac" then
  5.       open("QuickTime Installer")
  6.       halt()
  7.     else
  8.       open(the moviePath & "QuickTimeInstaller.exe")
  9.       halt()
  10.     end if
  11.   else
  12.     go(1, "Intro")
  13.   end if
  14. end
  15.